home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2002-03-12 | 1.0 KB | 36 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0" "TYPE"="6" "COUNT"="1" "UIPATH 1"="Appearance\Explorer\Settings" "NAME"="Auto-Expand Folders" "LANGUAGE"="VBScript" "TEXT 1"="Auto-Expand Folder in left side of Explorer" "DESCRIPTION 1"="By default, the Explorer automatically opens folder you select in the left-hand display. Basically, this saves a lot of time but you might want to turn this option off." "COMMENT 1"="Source: http://www2.cajun.net/~theriots/blk/xp_reg_edits.htm" "VERSION"="1.02" "AUTHOR"="Xteq Systems" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved." "CONTACTURL"="http://www.xteq.com/" sV="HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\FriendlyTree" SUB Plugin_Initialize i=RegReadValue(sV) if i=1 then Call SetUIElement(1,true) end if END SUB SUB Plugin_Apply(ElementIndex,ElementSubIndex) i=GetUIElement(1) if i=true then Call RegWriteValue(sV,1,2) else Call RegWriteValue(sV,0,2) end if END SUB SUB Plugin_Terminate END SUB